@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

  /* Reset and base */
  * {
    box-sizing: border-box;
  }
  body {
    margin: 0;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    color: #111;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Header */
  
  header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 3rem 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
  /* Logo */
  .logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
    gap: 6px;
    color: #222;
    user-select: none;
  }
  .logo svg {
    width: 28px;
    height: 28px;
    fill: #6b46c1;
  }

  /* Nav */
  nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  nav a {
    text-decoration: none;
    font-size: 1rem;
    color: black;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
  }
  nav a:hover, nav a.active {
    color: #03346e;
  }

  /* Contact Us button */
  .contact-btn {
    display: flex;
    align-items: center;
    background:#03346e;
    border-radius: 50px;
    padding: 9px 18px;
    border: 2px solid #03346f;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .contact-btn:hover {
    background: #6b46c1;
    color: #03346e;
  }
  .contact-btn svg {
    margin-left: 8px;
    width: 16px;
    height: 16px;
    stroke: white;
    stroke-width: 2;
    transition: stroke 0.3s ease;
  }
  .contact-btn:hover svg {
    stroke:white;
  }

  /* Main section */
  main {
    padding: 4rem 3rem 6rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  h1 {
    font-size: 3.25rem;
    font-weight: 900;
    margin: 0 0 0.4rem;
    line-height: 1.1;
  }
  p.subtitle {
    font-weight: 400;
    font-size: 1.05rem;
    color: #fdfdfd;
    margin-bottom: 2.8rem;
  }

  /* Get Started button */
  .btn-get-started {
    background: #03346e;
    padding: 14px 40px;
    border-radius: 50px;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 25px rgba(107,70,193,0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
  }
  .btn-get-started:hover {
    background-color: #543ab7;
  }
  .btn-get-started svg {
    width: 18px;
    height: 18px;
    stroke: white;
    stroke-width: 2.3;
    transition: stroke 0.3s ease;
  }
  .btn-get-started:hover svg {
    stroke: #d6caff;
  }

  /* Images container */
  .images-container {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: nowrap;
    perspective: 1000px;
    user-select: none;
  }

  .image-card {
    flex: 0 0 15.5%;
    max-width: 15.5%;
    background: #fff;
    border-radius: 15px;
    border-color: #fdfdfd 3px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(.03,.98,.52,.99), box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    will-change: transform;
  }
  .image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    pointer-events: none;
  }
  
  /* 3D tilt effect on hover */
  .image-card:hover {
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.4);
  }

  #bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;  /* Puts the video behind all other content */
  filter: brightness(0.6) saturate(1.2); /* Optional: darken and enhance video */
  pointer-events: none; /* Prevent video from interfering with clicks */
}

/* ------------------------- */
.programs-help-section {
  position: relative;
  background-color: white; /* or desired solid color */
  z-index: 10; /* ensure above video */

  }
  /* Programs panel styles */
  .programs-panel-bottom {
    background-color: #03346e;
    color: white;
    border-radius: 16px;
    padding: 2.2rem 3rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
  .programs-desc {
    flex: 1.5 1 280px;
    border-right: 1px solid rgba(255 255 255 / 0.3);
    padding-right: 1.6rem;
  }
  .programs-desc h3 {
    margin: 0 0 0.4rem;
    font-weight: 700;
  }
  .programs-desc p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.35;
  }
  .program-box {
    flex: 1 1 170px;
    padding-left: 1.6rem;
    border-left: 1px solid rgba(255 255 255 / 0.3);
  }
  .icon-circle {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    color: #6b46c1;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
  }
  .program-box h4 {
    margin: 0 0 0.3rem;
    font-weight: 600;
    font-size: 1.05rem;
  }
  .program-box p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.3;
  }

  /* Help content styles */
  .help-content-bottom {
    margin-top: 3.5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .help-img {
    position: relative;
    flex: 1 1 350px;
    max-width: 450px;
    border-radius: 14px;
    overflow: hidden;
  }
  .help-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 14px;
  }
  .success-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255 255 255 / 0.9);
    color: #6b46c1;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 9px rgb(107 70 193 / 0.4);
    user-select: none;
  }
  .success-badge strong {
    font-size: 1.3rem;
    line-height: 1;
  }

  .help-text-bottom {
    flex: 1 1 450px;
    max-width: 480px;
  }
  .help-text-bottom h2 {
    margin: 0 0 0.6rem;
    font-weight: 900;
    font-size: 1.9rem;
    color: #111;
  }
  .help-text-bottom p {
    color: #4a4a4a;
    font-weight: 400;
    margin: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
  }
  .help-text-bottom ul {
    margin: 0 0 2rem;
    padding-left: 1.2rem;
    list-style: none;
  }
  .help-text-bottom ul li {
    position: relative;
    font-weight: 500;
    color: #4a4a4a;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    padding-left: 22px;
  }
  .help-text-bottom ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6b46c1;
    font-weight: 700;
  }

  .btn-get-started-bottom {
    border-radius: 22px;
    padding: 0.8rem 2.6rem;
    font-weight: 700;
    color: white;
    background-color: #6b46c1;
    font-size: 1.08rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    box-shadow: 0 6px 14px rgb(107 70 193 / 0.65);
    transition: background-color 0.3s ease;
  }
  .btn-get-started-bottom svg {
    stroke: white;
    width: 18px;
    height: 18px;
  }
  .btn-get-started-bottom:hover,
  .btn-get-started-bottom:focus {
    background-color: #512da8;
    outline: none;
  }

  /* Responsive adjustments */
  @media (max-width: 720px) {
    .programs-panel-bottom {
      flex-direction: column;
    }
    .programs-desc,
    .program-box {
      border: none !important;
      padding: 0 0 1.5rem 0 !important;
    }
    .help-content-bottom {
      flex-direction: column;
    }
    .help-img,
    .help-text-bottom {
      max-width: 100%;
    }
    .btn-get-started-bottom {
      width: 100%;
      justify-content: center;
    }
  }

  /* How We Work Section */

  body {
  background: #fff; /* Page background white */
}
.how-we-work-section {
  width: 99vw;
  margin: 0;
  padding: 4rem 2vw 4rem 2vw;
  background: #fff; /* Section background white */
  border-radius: 0;
  box-shadow: none;
  max-width: 100vw;
  position: relative;
  overflow: hidden;
}
.hww-title {
  font-size: 2.7rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  color: #03346e;
  text-align: center;
  letter-spacing: 1px;
  animation: fadeInDown 1s both 0.25s;
}
.hww-subtitle {
  font-size: 1.15rem;
  text-align: center;
  color: #03346e;
  margin-bottom: 2.5rem;
  animation: fadeInDown 1s both 0.45s;
}
.work-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.work-step {
  background: #fff;
  box-shadow: 0 8px 18px rgba(90,50,150,0.08);
  border-radius: 18px;
  flex: 1 1 170px;
  min-width: 190px;
  max-width: 210px;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 2.7rem 1.1rem 2rem 1.1rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s;
  animation: fadeInUp 0.8s both;
  opacity: 0;
}
.work-step:nth-child(1){animation-delay:0.25s;}
.work-step:nth-child(2){animation-delay:0.4s;}
.work-step:nth-child(3){animation-delay:0.55s;}
.work-step:nth-child(4){animation-delay:0.7s;}
.work-step:nth-child(5){animation-delay:0.85s;}
.work-step:hover {
  transform: translateY(-18px) scale(1.04) rotate(-1deg);
  box-shadow: 0 16px 40px 0 #d3bfff4d, 0 8px 20px #03346e;
}
.work-step-number {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #03346e 10%, #6688b1 90%);
  color: #fff;
  border-radius: 50%;
  font-size: 2.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -29px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 20px rgba(107,70,193,0.22);
  border: 4px solid #fff;
  z-index: 2;
  transition: background 0.3s;
}
.work-step-content {
  margin-top: 2.8rem;
}
.work-step-content h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
  color: #03346e;
  font-weight: 700;
  letter-spacing: 0.2px;
  min-height: 46px;
}
.work-step-content p {
  margin: 0;
  color: #03346e;
  font-size: 0.97rem;
  line-height: 1.4;
  font-weight: 400;
  opacity: 1;
}
@media (max-width: 1050px) {
  .work-steps {
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .work-step {
    min-width: 170px; max-width: 100%;
  }
}
@media (max-width: 820px) {
  .how-we-work-section {padding: 1.1rem 4vw 3rem 4vw;}
  .work-steps {flex-direction: column; align-items: center;}
  .work-step {width: 95%; margin-bottom: 2rem; min-width: 0;}
}
@media (max-width: 460px) {
  .how-we-work-section{padding:0.1rem 0 1.5rem 0;}
  .hww-title {font-size: 2.1rem;}
  .hww-subtitle{font-size: 1rem;}
}
/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px);}
  to { opacity: 1; transform: none;}
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px);}
  to { opacity: 1; transform: none;}
}

/* Footer */

 .site-footer {
    background: #03346e;
    color: white;
    font-family: 'Poppins', sans-serif;
    padding: 3.5rem 2rem 1.5rem;
  }
  .footer-container {
    max-width: 1120px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
  }
  .footer-brand {
    flex: 1 1 380px;
  }
  .footer-brand h2 {
    font-size: 2.4rem;
    margin: 0 0 1rem;
    font-weight: 900;
    color: white;
  }
  .footer-brand p {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 1.8rem;
    color: white;
  }
  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 10px;
  }
  .social-link {
    background: white;
    color: #CCC;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
  }
  .social-link:hover {
    background: #03346e;
    color: #FFF;
  }
  .footer-links {
    display: flex;
    gap: 2.5rem;
    flex: 2 1 600px;
    flex-wrap: wrap;
  }
  .footer-links .col {
    min-width: 150px;
  }
  .footer-links h3 {
    color: #DDD;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid white;
    padding-bottom: 0.4rem;
  }
  .footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-links ul li {
    margin-bottom: 1rem;
  }
  .footer-links ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  .footer-links ul li a:hover {
    color: yellow;
  }
  .footer-bottom {
    border-top: 1px solid white;
    margin-top: 3rem;
    padding-top: 1.3rem;
    text-align: center;
    color: white;
    font-size: 0.9rem;
  }
  @media (max-width: 900px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-links {
      flex-wrap: wrap;
    }
    .footer-links .col {
      min-width: 200px;
      flex: 1 1 45%;
    }
  }
  @media (max-width: 480px) {
    .footer-links .col {
      min-width: 100%;
      flex: 1 1 100%;
    }
  }